home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / VIMVCL23.ZIP / DEMO1.DPR next >
Encoding:
Text File  |  1996-02-02  |  248 b   |  15 lines

  1. program Demo1;
  2.  
  3. uses
  4.   Forms,
  5.   Demo1s in 'DEMO1S.PAS' {Form1},
  6.   Demo1s1 in 'DEMO1S1.PAS' {errorDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TerrorDlg, errorDlg);
  13.   Application.Run;
  14. end.
  15.